home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 11 / FM Towns Free Software Collection 11.iso / t_os / tool / artemis1 / usrlib / src / setds.asm < prev    next >
Encoding:
Assembly Source File  |  1994-02-21  |  160 b   |  20 lines

  1. ;setds.asm
  2. ;
  3. ;
  4.  
  5.         public    setds
  6.  
  7.         assume    cs : cseg
  8.  
  9. cseg segment
  10.  
  11. setds        proc
  12.         mov    ax,[esp+4]
  13.         mov    ds,ax
  14.         ret
  15. setds        endp
  16.  
  17. cseg ends
  18.  
  19. end
  20.